home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 33
/
Amiga Format AFCD33 (Issue 117, Dec 1998).iso
/
-seriously_amiga-
/
graphics
/
infompeg
/
makefile
< prev
next >
Wrap
Makefile
|
1998-09-07
|
171b
|
14 lines
# If the program does not compile with gcc, try cc.
# CC = cc
CC = gcc
CFLAGS = -O
.c.o:
$(CC) $(CFLAGS) -c $<
O = infompeg.o
infoMPEG : $(O)
$(CC) -o infoMPEG $(O)